home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / net / bind-contrib.tar.gz / bind-contrib.tar / contrib / dnswalk / do-dnswalk < prev    next >
Encoding:
Text File  |  1996-10-25  |  415 b   |  14 lines

  1. #!/bin/sh
  2. # Here's an example script for a hostmaster of a large site
  3. # to automate the process
  4. # try adding '-F' here once just to see what pops up
  5. flags='-r -d'
  6. logfile=podunk.errors
  7. trap "" 2 15;
  8. exec > ${logfile}
  9. ./dnswalk ${flags} $* podunk.edu.
  10. ./dnswalk ${flags} $* 1.1.in-addr.arpa.
  11. ./dnswalk ${flags} $* 2.1.in-addr.arpa.
  12. ./dnswalk ${flags} $* 1.2.1.in-addr.arpa.
  13. ./dnswalk ${flags} $* 2.2.1.in-addr.arpa.
  14.